Dim ht As Hashtable = New Hashtable()
ht = System.Configuration.ConfigurationManager.GetSection("MyCompanyAppSettings")

Response.Write(ht("Key1") + "<br />")
Response.Write(ht("Key2"))
